home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / weakref.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  11KB  |  385 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Weak reference support for Python.
  5.  
  6. This module is an implementation of PEP 205:
  7.  
  8. http://python.sourceforge.net/peps/pep-0205.html
  9. '''
  10. import UserDict
  11. from _weakref import getweakrefcount, getweakrefs, ref, proxy, CallableProxyType, ProxyType, ReferenceType
  12. from exceptions import ReferenceError
  13. ProxyTypes = (ProxyType, CallableProxyType)
  14. __all__ = [
  15.     'ref',
  16.     'proxy',
  17.     'getweakrefcount',
  18.     'getweakrefs',
  19.     'WeakKeyDictionary',
  20.     'ReferenceType',
  21.     'ProxyType',
  22.     'CallableProxyType',
  23.     'ProxyTypes',
  24.     'WeakValueDictionary']
  25.  
  26. class WeakValueDictionary(UserDict.UserDict):
  27.     '''Mapping class that references values weakly.
  28.  
  29.     Entries in the dictionary will be discarded when no strong
  30.     reference to the value exists anymore
  31.     '''
  32.     
  33.     def __init__(self, *args, **kw):
  34.         
  35.         def remove(wr, selfref = ref(self)):
  36.             self = selfref()
  37.             if self is not None:
  38.                 del self.data[wr.key]
  39.             
  40.  
  41.         self._remove = remove
  42.         UserDict.UserDict.__init__(self, *args, **kw)
  43.  
  44.     
  45.     def __getitem__(self, key):
  46.         o = self.data[key]()
  47.         if o is None:
  48.             raise KeyError, key
  49.         else:
  50.             return o
  51.  
  52.     
  53.     def __contains__(self, key):
  54.         
  55.         try:
  56.             o = self.data[key]()
  57.         except KeyError:
  58.             return False
  59.  
  60.         return o is not None
  61.  
  62.     
  63.     def has_key(self, key):
  64.         
  65.         try:
  66.             o = self.data[key]()
  67.         except KeyError:
  68.             return False
  69.  
  70.         return o is not None
  71.  
  72.     
  73.     def __repr__(self):
  74.         return '<WeakValueDictionary at %s>' % id(self)
  75.  
  76.     
  77.     def __setitem__(self, key, value):
  78.         self.data[key] = KeyedRef(value, self._remove, key)
  79.  
  80.     
  81.     def copy(self):
  82.         new = WeakValueDictionary()
  83.         for key, wr in self.data.items():
  84.             o = wr()
  85.             if o is not None:
  86.                 new[key] = o
  87.                 continue
  88.         
  89.         return new
  90.  
  91.     
  92.     def get(self, key, default = None):
  93.         
  94.         try:
  95.             wr = self.data[key]
  96.         except KeyError:
  97.             return default
  98.  
  99.         o = wr()
  100.         if o is None:
  101.             return default
  102.         else:
  103.             return o
  104.  
  105.     
  106.     def items(self):
  107.         L = []
  108.         for key, wr in self.data.items():
  109.             o = wr()
  110.             if o is not None:
  111.                 L.append((key, o))
  112.                 continue
  113.         
  114.         return L
  115.  
  116.     
  117.     def iteritems(self):
  118.         for wr in self.data.itervalues():
  119.             value = wr()
  120.             if value is not None:
  121.                 yield (wr.key, value)
  122.                 continue
  123.         
  124.  
  125.     
  126.     def iterkeys(self):
  127.         return self.data.iterkeys()
  128.  
  129.     
  130.     def __iter__(self):
  131.         return self.data.iterkeys()
  132.  
  133.     
  134.     def itervalues(self):
  135.         for wr in self.data.itervalues():
  136.             obj = wr()
  137.             if obj is not None:
  138.                 yield obj
  139.                 continue
  140.         
  141.  
  142.     
  143.     def popitem(self):
  144.         while None:
  145.             (key, wr) = self.data.popitem()
  146.             o = wr()
  147.             if o is not None:
  148.                 return (key, o)
  149.                 continue
  150.  
  151.     
  152.     def pop(self, key, *args):
  153.         
  154.         try:
  155.             o = self.data.pop(key)()
  156.         except KeyError:
  157.             if args:
  158.                 return args[0]
  159.             
  160.             raise 
  161.  
  162.         if o is None:
  163.             raise KeyError, key
  164.         else:
  165.             return o
  166.  
  167.     
  168.     def setdefault(self, key, default = None):
  169.         
  170.         try:
  171.             wr = self.data[key]
  172.         except KeyError:
  173.             self.data[key] = KeyedRef(default, self._remove, key)
  174.             return default
  175.  
  176.         return wr()
  177.  
  178.     
  179.     def update(self, dict = None, **kwargs):
  180.         d = self.data
  181.         if dict is not None:
  182.             if not hasattr(dict, 'items'):
  183.                 dict = type({ })(dict)
  184.             
  185.             for key, o in dict.items():
  186.                 d[key] = KeyedRef(o, self._remove, key)
  187.             
  188.         
  189.         if len(kwargs):
  190.             self.update(kwargs)
  191.         
  192.  
  193.     
  194.     def values(self):
  195.         L = []
  196.         for wr in self.data.values():
  197.             o = wr()
  198.             if o is not None:
  199.                 L.append(o)
  200.                 continue
  201.         
  202.         return L
  203.  
  204.  
  205.  
  206. class KeyedRef(ref):
  207.     """Specialized reference that includes a key corresponding to the value.
  208.  
  209.     This is used in the WeakValueDictionary to avoid having to create
  210.     a function object for each key stored in the mapping.  A shared
  211.     callback object can use the 'key' attribute of a KeyedRef instead
  212.     of getting a reference to the key from an enclosing scope.
  213.  
  214.     """
  215.     __slots__ = ('key',)
  216.     
  217.     def __new__(type, ob, callback, key):
  218.         self = ref.__new__(type, ob, callback)
  219.         self.key = key
  220.         return self
  221.  
  222.     
  223.     def __init__(self, ob, callback, key):
  224.         super(KeyedRef, self).__init__(ob, callback)
  225.  
  226.  
  227.  
  228. class WeakKeyDictionary(UserDict.UserDict):
  229.     ''' Mapping class that references keys weakly.
  230.  
  231.     Entries in the dictionary will be discarded when there is no
  232.     longer a strong reference to the key. This can be used to
  233.     associate additional data with an object owned by other parts of
  234.     an application without adding attributes to those objects. This
  235.     can be especially useful with objects that override attribute
  236.     accesses.
  237.     '''
  238.     
  239.     def __init__(self, dict = None):
  240.         self.data = { }
  241.         
  242.         def remove(k, selfref = ref(self)):
  243.             self = selfref()
  244.             if self is not None:
  245.                 del self.data[k]
  246.             
  247.  
  248.         self._remove = remove
  249.         if dict is not None:
  250.             self.update(dict)
  251.         
  252.  
  253.     
  254.     def __delitem__(self, key):
  255.         del self.data[ref(key)]
  256.  
  257.     
  258.     def __getitem__(self, key):
  259.         return self.data[ref(key)]
  260.  
  261.     
  262.     def __repr__(self):
  263.         return '<WeakKeyDictionary at %s>' % id(self)
  264.  
  265.     
  266.     def __setitem__(self, key, value):
  267.         self.data[ref(key, self._remove)] = value
  268.  
  269.     
  270.     def copy(self):
  271.         new = WeakKeyDictionary()
  272.         for key, value in self.data.items():
  273.             o = key()
  274.             if o is not None:
  275.                 new[o] = value
  276.                 continue
  277.         
  278.         return new
  279.  
  280.     
  281.     def get(self, key, default = None):
  282.         return self.data.get(ref(key), default)
  283.  
  284.     
  285.     def has_key(self, key):
  286.         
  287.         try:
  288.             wr = ref(key)
  289.         except TypeError:
  290.             return 0
  291.  
  292.         return wr in self.data
  293.  
  294.     
  295.     def __contains__(self, key):
  296.         
  297.         try:
  298.             wr = ref(key)
  299.         except TypeError:
  300.             return 0
  301.  
  302.         return wr in self.data
  303.  
  304.     
  305.     def items(self):
  306.         L = []
  307.         for key, value in self.data.items():
  308.             o = key()
  309.             if o is not None:
  310.                 L.append((o, value))
  311.                 continue
  312.         
  313.         return L
  314.  
  315.     
  316.     def iteritems(self):
  317.         for wr, value in self.data.iteritems():
  318.             key = wr()
  319.             if key is not None:
  320.                 yield (key, value)
  321.                 continue
  322.         
  323.  
  324.     
  325.     def iterkeys(self):
  326.         for wr in self.data.iterkeys():
  327.             obj = wr()
  328.             if obj is not None:
  329.                 yield obj
  330.                 continue
  331.         
  332.  
  333.     
  334.     def __iter__(self):
  335.         return self.iterkeys()
  336.  
  337.     
  338.     def itervalues(self):
  339.         return self.data.itervalues()
  340.  
  341.     
  342.     def keys(self):
  343.         L = []
  344.         for wr in self.data.keys():
  345.             o = wr()
  346.             if o is not None:
  347.                 L.append(o)
  348.                 continue
  349.         
  350.         return L
  351.  
  352.     
  353.     def popitem(self):
  354.         while None:
  355.             (key, value) = self.data.popitem()
  356.             o = key()
  357.             if o is not None:
  358.                 return (o, value)
  359.                 continue
  360.  
  361.     
  362.     def pop(self, key, *args):
  363.         return self.data.pop(ref(key), *args)
  364.  
  365.     
  366.     def setdefault(self, key, default = None):
  367.         return self.data.setdefault(ref(key, self._remove), default)
  368.  
  369.     
  370.     def update(self, dict = None, **kwargs):
  371.         d = self.data
  372.         if dict is not None:
  373.             if not hasattr(dict, 'items'):
  374.                 dict = type({ })(dict)
  375.             
  376.             for key, value in dict.items():
  377.                 d[ref(key, self._remove)] = value
  378.             
  379.         
  380.         if len(kwargs):
  381.             self.update(kwargs)
  382.         
  383.  
  384.  
  385.